home *** CD-ROM | disk | FTP | other *** search
- #ifndef SYS_UNISTD_H
- #define SYS_UNISTD_H
-
- /*
- ** $VER: sys/unistd.h 1.1 (18.09.98)
- ** Includes Release 44.10
- **
- ** Copyright © 1996/98 by CyberdyneSystems
- **
- ** written by Matthias Henze
- ** All Rights Reserved
- */
-
- /* access function */
- #define F_OK 0 /* test for existence of file */
- #define X_OK 0x01 /* test for execute or search permission */
- #define W_OK 0x02 /* test for write permission */
- #define R_OK 0x04 /* test for read permission */
-
- #endif /* SYS_UNISTD_H */
-